home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / SLAX 6.0.8 / slax-6.0.8.iso / slax / base / 006-devel.lzm / usr / include / k3bmovixdvdjob.h < prev    next >
Encoding:
C/C++ Source or Header  |  2008-05-27  |  1.3 KB  |  61 lines

  1. /*
  2.  *
  3.  * $Id: k3bmovixdvdjob.h 619556 2007-01-03 17:38:12Z trueg $
  4.  * Copyright (C) 2003 Sebastian Trueg <trueg@k3b.org>
  5.  *
  6.  * This file is part of the K3b project.
  7.  * Copyright (C) 1998-2007 Sebastian Trueg <trueg@k3b.org>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  * See the file "COPYING" for the exact licensing terms.
  14.  */
  15.  
  16.  
  17. #ifndef _K3B_MOVIX_DVD_JOB_H_
  18. #define _K3B_MOVIX_DVD_JOB_H_
  19.  
  20. #include <k3bjob.h>
  21.  
  22. class K3bMovixDvdDoc;
  23. class K3bDevice::Device;
  24. class K3bDvdJob;
  25. class KTempFile;
  26. class K3bMovixInstallation;
  27. class K3bMovixDocPreparer;
  28. class K3bDirItem;
  29. class K3bFileItem;
  30.  
  31. class K3bMovixDvdJob : public K3bBurnJob
  32. {
  33.   Q_OBJECT
  34.  
  35.  public:
  36.   K3bMovixDvdJob( K3bMovixDvdDoc* doc, K3bJobHandler*, QObject* parent = 0 );
  37.   ~K3bMovixDvdJob();
  38.  
  39.   K3bDoc* doc() const;
  40.   K3bDevice::Device* writer() const;
  41.  
  42.   QString jobDescription() const;
  43.   QString jobDetails() const;
  44.         
  45.  public slots:
  46.   void start();
  47.   void cancel();
  48.  
  49.  private slots:
  50.   void slotDvdJobFinished( bool );
  51.  
  52.  private:
  53.   K3bMovixDvdDoc* m_doc;
  54.   K3bDvdJob* m_dvdJob;
  55.   K3bMovixDocPreparer* m_movixDocPreparer;
  56.  
  57.   bool m_canceled;
  58. };
  59.  
  60. #endif
  61.